/* style admissions.css */

/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #007bff;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}

/* Header Section */
section.bg-primary {
    background-image: url('Image/campus_bg.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
}

section.bg-primary h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

section.bg-primary p {
    font-size: 1.25rem;
}

/* Admission Form Section */
section h2 {
    font-weight: bold;
    color: #333;
}

.form-label {
    font-weight: 500;
    color: #555;
}

.form-control {
    border-radius: 0.25rem;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
}

.btn-primary {
    background-color: #007bff;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Footer Styles */
footer.bg-dark {
    background-color: #222;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    section.bg-primary h1 {
        font-size: 2rem;
    }

    section.bg-primary p {
        font-size: 1rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    footer p {
        font-size: 0.8rem;
    }
}
